home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / fnordadl / fn132src.zoo / scripts / makedist < prev    next >
Encoding:
Text File  |  1991-09-02  |  365 b   |  14 lines

  1. # Script to build a full Fnordadel distribution
  2. # NeXT version
  3. if ("$1" != '') then
  4.     cd bin
  5.     find . -type f -print | zoo21 ahI ../fn$1bin.zoo
  6.     cd ../man
  7.     find . -type f -print | zoo21 ahI ../fn$1man.zoo
  8.     cd ../src
  9.     find . -type f -print | zoo21 ahI ../fn$1src.zoo
  10.     cd ..
  11. else
  12.     echo 'usage: makedist xyz (where xyz as in version x.yz)'
  13. endif
  14.